home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / setlinebuf.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  1KB  |  46 lines

  1. /* 
  2.  * setlinebuf.c --
  3.  *
  4.  *    Source code for the "setlinebuf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: setlinebuf.c,v 1.1 88/06/10 16:23:59 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * setlinebuf --
  26.  *
  27.  *    Turn on line buffering for a stream.
  28.  *
  29.  * Results:
  30.  *    None.
  31.  *
  32.  * Side effects:
  33.  *    From now on, the buffer for stream will be flushed whenever a
  34.  *    newline character is written to it, and also whenever input is
  35.  *    read from stdin.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. void
  41. setlinebuf(stream)
  42.     FILE *stream;        /* Stream to be re-buffered. */
  43. {
  44.     stream->flags |= STDIO_LINEBUF;
  45. }
  46.